2015-10-16.sql 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. update tb_ErpSystemCategory set Sc_ClassName='一级' where Sc_ClassCode='BEBBBCADDEBFJDFFC'
  2. update tb_ErpSystemCategory set Sc_ClassName='二级' where Sc_ClassCode='BEBBBCADEGBGAFFJC'
  3. update tb_ErpSystemCategory set Sc_ClassName='三级' where Sc_ClassCode='BEBBBCADAFBHBCHCI'
  4. IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'View_DressSaleRentalDetail')
  5. BEGIN
  6. DROP VIEW [dbo].View_DressSaleRentalDetail
  7. END
  8. GO
  9. create View View_DressSaleRentalDetail
  10. as
  11. SELECT tb_ErpDressSaleRentalDetail.Id,Dsrd_Number,Dsrd_DressNumber,Dsrd_DressName,Dsrd_SaleRentalQuantity,Dsrd_CostPrice,
  12. Dsrd_SalePrice,Dsrd_BackTime,Dsrd_BackStatus,Dsrd_BackRemark,Dsrd_CreateDateTime,Dsrd_CreateName,Dsrd_UpdateDateTime,
  13. Dsrd_UpdateName,Dsro_Number,Dsro_Type,Dsro_Amount,Dsro_MortgageAmount,Dsro_CustomerNumber,Dsro_TakeDressTime,
  14. Dsro_ReservationBackTime,Dsro_Remark,Dsro_CreateDateTime,Dsro_CreateName,Dsro_UpdateDateTime,Dsro_UpdateName,Cus_Name ,
  15. [dbo].[fn_GetAlsoClothesDays]('AlsoClothesDay') as '还衣天数',
  16. DateAdd(d, -CONVERT(int,[dbo].[fn_GetAlsoClothesDays]('AlsoClothesDay')),Dsro_TakeDressTime) as '还衣天数取衣日期',
  17. DateAdd(d, CONVERT(int,[dbo].[fn_GetAlsoClothesDays]('AlsoClothesDay')),Dsro_ReservationBackTime) as '还衣天数加还衣日期',
  18. --(select max(DateAdd(d,CONVERT(int,[dbo].[fn_GetAlsoClothesDays]('AlsoClothesDay')),Dsro_ReservationBackTime)) from tb_ErpDressSaleRentalDetail where Dsrd_DressNumber=Dsrd_DressNumber) as '最大还衣时间',
  19. --(select min(DateAdd(d,CONVERT(int,[dbo].[fn_GetAlsoClothesDays]('AlsoClothesDay')),Dsro_ReservationBackTime)) from tb_ErpDressSaleRentalDetail where Dsrd_DressNumber=Dsrd_DressNumber) as '最小还衣时间'
  20. Dsfm_RentPrice
  21. FROM tb_ErpDressSaleRentalDetail left join tb_ErpDressSaleRentalOrder on Dsrd_Number=Dsro_Number
  22. left join tb_ErpCustomer on Dsro_CustomerNumber=Cus_CustomerNumber
  23. left join tb_ErpDressFrom on Dsrd_DressNumber=Dsfm_DressNumber
  24. group by tb_ErpDressSaleRentalDetail.Id,Dsrd_Number,Dsrd_DressNumber,Dsrd_DressName,Dsrd_SaleRentalQuantity,Dsrd_CostPrice,
  25. Dsrd_SalePrice,Dsrd_BackTime,Dsrd_BackStatus,Dsrd_BackRemark,Dsrd_CreateDateTime,Dsrd_CreateName,Dsrd_UpdateDateTime,
  26. Dsrd_UpdateName,Dsro_Number,Dsro_Type,Dsro_Amount,Dsro_MortgageAmount,Dsro_CustomerNumber,Dsro_TakeDressTime,
  27. Dsro_ReservationBackTime,Dsro_Remark,Dsro_CreateDateTime,Dsro_CreateName,Dsro_UpdateDateTime,Dsro_UpdateName,Cus_Name ,Dsfm_RentPrice
  28. GO
  29. if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[fn_GetAlsoClothesDays]') and xtype in (N'FN', N'IF', N'TF'))
  30. BEGIN
  31. DROP FUNCTION [dbo].fn_GetAlsoClothesDays
  32. END
  33. GO
  34. CREATE function [dbo].[fn_GetAlsoClothesDays](@FID varchar(800))
  35. /******
  36. 获取还衣天数
  37. ******/
  38. Returns varchar(800)
  39. As
  40. Begin
  41. Declare @Num int
  42. begin
  43. --串连数据
  44. select @Num=Sconfig_Value from tb_ErpSystemConfigure where Sconfig_Code=@FID
  45. end
  46. Return @Num
  47. End
  48. GO
  49. IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'View_ErpOtherIncomeAndExpenses')
  50. BEGIN
  51. DROP VIEW [dbo].View_ErpOtherIncomeAndExpenses
  52. END
  53. GO
  54. create View View_ErpOtherIncomeAndExpenses
  55. as
  56. SELECT dbo.tb_ErpOtherIncomeAndExpenses.ID,
  57. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_Type,
  58. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_ProjectName,
  59. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_Money,
  60. Oiae_IEDatetime,
  61. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_PersonHandling,
  62. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_ThePayer, dbo.tb_ErpOtherIncomeAndExpenses.Oiae_Invoice,
  63. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_Remark, dbo.tb_ErpOtherIncomeAndExpenses.Oiae_CreateDatetime,
  64. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_FinancialAuditState,
  65. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_FinancialAuditPeople,
  66. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_ManagerAuditState,
  67. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_ManagerAuditPeople,
  68. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_CEOAuditState, dbo.tb_ErpOtherIncomeAndExpenses.Oiae_CEOAuditPeople,
  69. dbo.tb_ErpOtherIncomeAndExpenses.Oiae_PaymentMethod,
  70. dbo.fn_CheckUserIDGetUserName(Oiae_ThePayer) AS [User_Name],
  71. dbo.fn_CheckUserIDGetUserName(Oiae_PersonHandling) AS Oiae_PersonHandlingName,
  72. dbo.fn_CheckUserIDGetUserName(Oiae_FinancialAuditPeople) AS Oiae_FinancialAuditPeopleName,
  73. dbo.fn_CheckUserIDGetUserName(Oiae_ManagerAuditPeople) AS Oiae_ManagerAuditPeopleName,
  74. dbo.fn_CheckUserIDGetUserName(Oiae_CEOAuditPeople) AS Oiae_CEOAuditPeopleName,
  75. dbo.fn_GetClassCodeToName(Oiae_PaymentMethod,Oiae_PaymentMethod) AS Oiae_PaymentMethodName
  76. FROM dbo.tb_ErpOtherIncomeAndExpenses
  77. GO
  78. IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'Vw_OrdersWagePaymentRecords')
  79. BEGIN
  80. DROP VIEW [dbo].Vw_OrdersWagePaymentRecords
  81. END
  82. GO
  83. create View Vw_OrdersWagePaymentRecords
  84. as
  85. SELECT
  86. tb_ErpPayment.ID,
  87. Pay_OrdNumber,
  88. Pay_AmountOf,
  89. Pay_OpenSingle,
  90. Pay_ThePayee,
  91. Pay_PaymentMethod,
  92. Pay_OrdersLocation,
  93. Pay_ReceivableProject,
  94. Pay_Remark,
  95. Pay_CreateDatetime,
  96. Pay_Category,
  97. Pay_TwoPinsCategory,
  98. dbo.fn_CheckUserIDGetUserName(Pay_OpenSingle) AS Pay_UserName,
  99. dbo.fn_CheckUserIDGetUserName(Pay_ThePayee) AS Pay_ThePayeeName,
  100. dbo.fn_GetClassCodeToName(Pay_PaymentMethod, Pay_PaymentMethod) AS Pay_PaymentMethodName,
  101. dbo.fn_GetClassCodeToName(Pay_TwoPinsCategory, Pay_TwoPinsCategory) AS Pay_TwoPinsCategoryName,
  102. Pay_FinancialAuditdPeople,
  103. Pay_FinancialAudit,
  104. dbo.fn_CheckUserIDGetUserName(Pay_FinancialAuditdPeople)AS Pay_FinancialAuditdPeopleName,
  105. Pay_ShootingName,
  106. Pay_Type,
  107. Ord_DividedShop,
  108. Ord_Type,
  109. Cus_Name as Ord_CustomerName1,
  110. (select Tsorder_Name from Vw_TwoSalesOrder where Pay_OrdNumber= Tsorder_Number) as Tsorder_Name,
  111. (select Tsorder_CustomerName from Vw_TwoSalesOrder where Pay_OrdNumber= Tsorder_Number) as Tsorder_CustomerName,
  112. (select Cus_Name from View_DressSaleRentalOrder where Pay_OrdNumber=Dsro_Number) as Cus_Name,
  113. Ord_CreateDatetime,
  114. Ord_SeriesName,
  115. Ord_PhotographyCategory
  116. ,Ord_SinceOrderNumber
  117. FROM tb_ErpPayment
  118. left join Vw_Customer_PaymentOrders on Pay_OrdNumber=Ord_Number
  119. GO
  120. if not exists
  121. (select * from syscolumns where id=object_id('tb_ErpDressRefundRecord') and name='DRR_HandledName')
  122. begin
  123. alter table tb_ErpDressRefundRecord add DRR_HandledName nvarchar(20)
  124. end
  125. IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'Vw_MonthlyReport')
  126. BEGIN
  127. DROP VIEW [dbo].Vw_MonthlyReport
  128. END
  129. GO
  130. create View Vw_MonthlyReport
  131. as
  132. select
  133. Pay_CreateDatetimes
  134. ,(select sum(Pay_AmountOf) from tb_ErpPayment where (Pay_Category='全款' or Pay_Category='预约收款') and (Pay_PaymentMethod!='BEBACCAFEGECFBJFD' and Pay_PaymentMethod!='BEBCABAJBDFBBJGID') and Pay_CreateDatetime>=Pay_CreateDatetimes and Pay_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayOrdersIncome
  135. , (select sum(Pay_AmountOf) from tb_ErpPayment where Pay_Category='预约补款' and (Pay_PaymentMethod!='BEBACCAFEGECFBJFD' and Pay_PaymentMethod!='BEBCABAJBDFBBJGID') and Pay_CreateDatetime>=Pay_CreateDatetimes and Pay_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayReplenishmentIncome
  136. ,(select sum(Pay_AmountOf) from tb_ErpPayment where Pay_Category='后期收款' and (Pay_PaymentMethod!='BEBACCAFEGECFBJFD' and Pay_PaymentMethod!='BEBCABAJBDFBBJGID') and Pay_CreateDatetime>=Pay_CreateDatetimes and Pay_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayLateStageIncome
  137. , (select sum(Oiae_Money) from tb_ErpOtherIncomeAndExpenses where Oiae_Type='收入' and Oiae_PaymentMethod!='BEBACCAFEGECFBJFD' and Oiae_IEDatetime>=Pay_CreateDatetimes and Oiae_IEDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayOtherIncome
  138. ,(select sum(Mcrr_RechargeAmount) from tb_ErpMemberCardRechargeRecord where Mcrr_CreateDatetime>=Pay_CreateDatetimes and Mcrr_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayMemberIncome
  139. ,(select sum(Ord_SeriesPrice) from tb_ErpOrder where ord_class='1' and Ord_CreateDatetime>=Pay_CreateDatetimes and Ord_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayEarlyPerformance
  140. ,(select sum(Plu_Amount) from tb_ErpPlusPickItems where Plu_CreateTime>=Pay_CreateDatetimes and Plu_CreateTime<=Pay_CreateDatetimes+' 23:59:59.000') as DayPluslatepickPerformance
  141. ,(select sum(Tsorder_Money) from tb_ErpTwoSalesOrder where Tsorder_CreateDatetime>=Pay_CreateDatetimes and Tsorder_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayOtherPerformance
  142. , (select sum(Oiae_Money) from tb_ErpOtherIncomeAndExpenses where (Oiae_Type='支出') and Oiae_IEDatetime>=Pay_CreateDatetimes and Oiae_IEDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayExpenditure
  143. , (select sum(Oiae_Money) from tb_ErpOtherIncomeAndExpenses where (Oiae_Type='财务支出') and Oiae_IEDatetime>=Pay_CreateDatetimes and Oiae_IEDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayExpenditure2
  144. ,(select sum(Mcpt_PaymentAmount) from tb_ErpMemberCardPayment where Mcpt_CreateDatetime>=Pay_CreateDatetimes and Mcpt_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as DayMemberCardPaymentIncome
  145. ,(select sum(Mcpm_BackAoumnt) from tb_ErpMemberCardPhotographerMain where (Mcpm_BackStatus='0') and Mcpm_CreateDatetime>=Pay_CreateDatetimes and Mcpm_CreateDatetime<=Pay_CreateDatetimes+' 23:59:59.000') as 摄友会收入
  146. from
  147. (
  148. select Pay_CreateDatetimes from Vw_ReportTime
  149. ) as MonthlyReport
  150. group by Pay_CreateDatetimes
  151. GO